home *** CD-ROM | disk | FTP | other *** search
/ Meeting Pearls 1 / Meeting Pearls Vol 1 (1994).iso / installed_progs / comm / avm / rexx / openmailbox.avm < prev    next >
Encoding:
Text File  |  1994-04-06  |  308 b   |  12 lines

  1. /* */
  2. parse arg mailbox special .
  3.  
  4. if special = 1 | special = 0 then
  5.     address command 'run >nil: <nil: avm:logview' mailbox
  6. else if special = 2 then
  7.     address command 'run >nil: <nil: avm:scheduler' mailbox
  8. else if special = 3 then
  9.     address command 'run >nil: <nil: avm:scheduler' mailbox '-noschedule'
  10.  
  11. exit
  12.